home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / prog / pdt_set1.zip / DEMO1.BAT < prev    next >
DOS Batch File  |  1992-06-22  |  516b  |  32 lines

  1. @Echo off
  2. cls
  3. :
  4. : ---- See if required files are here.
  5. :
  6. If Not Exist  Fields.Exe  Goto FilesNotFound
  7. If Not Exist  Sample.DBF  Goto FilesNotFound
  8. Goto Start
  9. :
  10. :FilesNotFound
  11. :
  12. Echo I couldn't find one of the following files.  I'm ending . . .
  13. Echo   
  14. Echo   Fields.Exe,  Sample.DBF
  15. Echo 
  16. Goto End
  17. :
  18. :Start
  19. If Not Exist Sample.!!! Goto Run_Fields
  20. :
  21. Del Sample.!!!
  22. :
  23. : ---- Run FIELDS using Sample.DBF to quickly create Sample.!!!
  24. :
  25. :Run_Fields
  26. :
  27. Fields Sample.DBF
  28. Echo   
  29. Echo   
  30. :
  31. :
  32.